home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / oleauttr.zip / NUMSVR.ZIP / NUMSVPRJ.DPR < prev    next >
Text File  |  1995-03-22  |  218b  |  15 lines

  1. program NumSvPrj;
  2.  
  3. uses
  4.   Forms,
  5.   NumSvr in 'NUMSVR.PAS' {frmNumSvr},
  6.   Oleauto,
  7.   Numsvcls in 'NUMSVCLS.PAS';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TfrmNumSvr, frmNumSvr);
  13.   Application.Run;
  14. end.
  15.